home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / UTILITIE / CPU_MEMO / 0577.ZIP / FANCBOOT.DOC < prev    next >
Text File  |  1987-04-03  |  4KB  |  102 lines

  1. FANCY BOOT:
  2.  
  3. If you have no Clock Card in your PC and would like a simple way to set the
  4. date and time when you turn on your machine; if you are "bored to tears" by
  5. the same old "C>" prompt, then this is for YOU!
  6.  
  7.  
  8. Enclosed in this .ARC, you will find 4 files, plus this READ_ME.1ST file:
  9.  
  10. CONFIG.SYS    -  A CONFIG.SYS file, explained below
  11.  
  12. AUTOEXEC.BAT  -  An AUTOEXEC file that executes the other files and
  13.                  illustrates a rather unique PROMPT command
  14.  
  15. DTIME.ANS     -  An ansi-graphics file that is the lead-in to IPLTIME.COM
  16.  
  17. IPLTIME.COM   -  Like DDATE, but allows setting of Date AND Time with the
  18.                  Arrow Keys!
  19.  
  20.  
  21. AN EXPLANATION OF THESE FILES:
  22.  
  23. 1. CONFIG.SYS - This file configures your system upon boot-up.  The most
  24.    important commands in this file are the first two:
  25.  
  26.    SHELL=C:\COMMAND.COM C:\ /p /e=20 - This command tells your PC to always
  27.    look for COMMAND.COM in the ROOT Directory, and expands your PC's
  28.    environment to 20 paragraphs (may be expanded up to 62!).
  29.  
  30.    DEVICE=ANSI.SYS - This command installs the ANSI Graphics interpreter-
  31.    required for DTIME.ANS and the PROMPT command in the AUTOEXEC file to
  32.    work!
  33.  
  34.    The other two commands expand the default FILES and BUFFERS environment.
  35.  
  36. 2. AUTOEXEC.BAT - I will explain each command in this file:
  37.  
  38.    ECHO OFF - This command turns off the ECHO of all other commands in the
  39.    file to the screen, until reversed by ECHO ON at the end of the file.
  40.  
  41.    TYPE DTIME.ANS - This gives a colorful display of instructions on how
  42.    to set the DATE and TIME using IPLTIME.  The DTIME.ANS file was made
  43.    using the PD ansi-graphics program THEDRAW.
  44.  
  45.    IPLTIME - This is a PD program I got from a BBS which is similar to
  46.    DDATE, but allows setting the Date AND Time with the arrow keys.  The
  47.    last time set is automatically saved to the file each time it is run,
  48.    so if you boot-up at approximately the same time each morning, you
  49.    shouldn't have to change much!
  50.  
  51.    PATH C:\;C:\SYSTEM - Regardless which sub-directory you are in, if you
  52.    try to execute a file that is not in your current directory, the PATH
  53.    command instructs your PC to check the "PATHED" directories before
  54.    issuing a "File not found" error.  Files you use on a regular basis
  55.    (such as a text editor or LIST program) should be kept in one of these
  56.    PATH directories.  This eliminates the need of having duplicate often-
  57.    used programs in each sub-directory.
  58.  
  59.    PROMPT DATE:...etc. - This will give you a "Fancy" Prompt, namely, the
  60.    DATE in RED, the TIME in CYAN, your current sub-directory in YELLOW, and
  61.    a "Your Command?>" in bright WHITE.  Quite a change from the "dull and
  62.    drab" C:>, don't you think?
  63.  
  64.    Some of the commands you can use in this PROMPT command to "custom tailor"
  65.    your own prompt:
  66.  
  67.    $d = display the current date   |   $t = display the current time
  68.    $n = display current drive      |   $p = display drive and directory
  69.    $g = display ">"                |   $_ = goto new line
  70.    $h = erase previous character (for example: $t$h$h$h$h$h$h will display
  71.         TIME in only HH:MM format, erasing the seconds and hundredths)
  72.  
  73.    $e = the escape command, can be used with the following to change the
  74.         color of what follows the command:
  75.  
  76.    [0m = returns to default colors, always put this at the end of the
  77.          PROMPT statement, unless you want the foreground color changed!
  78.  
  79.    [1m = HIGHLIGHTED (Colors 8 through 15)
  80.  
  81.    [4m = UNDERLINED
  82.  
  83.    [5m = BLINK
  84.  
  85.    [7m = REVERSE Video
  86.  
  87.    [31m = RED     [32m = GREEN     [33m = YELLOW     [34m = BLUE
  88.  
  89.    [35m = MAGENTA [36m = CYAN      [37m = WHITE      [30m = BLACK
  90.  
  91.    (NOTE: the default command for PROMPT is $n$g)
  92.  
  93.    ECHO ON - Turns your screen ECHO back on.
  94.  
  95.    These are ideas and files I got from many other people (to numerous to
  96.    list here), hopefully put into an order you can understand and use.
  97.  
  98.    HOPE YOU ENJOY!!!
  99.  
  100.    Lloyd Unsell
  101.    (202) 822-0369
  102.